func go/types.align

5 uses

	go/types (current package)
		gcsizes.go#L90: 		offs = align(offs, a) // possibly < 0 if align overflows
		gcsizes.go#L153: 		return align(offs+size, s.Alignof(t)) // may overflow to < 0 which is ok
		sizes.go#L140: 		offs = align(offs, a) // possibly < 0 if align overflows
		sizes.go#L195: 		ea := align(esize, a) // possibly < 0 if align overflows
		sizes.go#L340: func align(x, a int64) int64 {